home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / DirectX SDK / DXSDK / include / comlite.h < prev    next >
C/C++ Source or Header  |  2001-10-08  |  944b  |  27 lines

  1. //------------------------------------------------------------------------------
  2. // File: COMLite.h
  3. //
  4. // Desc: This header file is to provide a migration path for users of 
  5. //       ActiveMovie betas 1 and 2.
  6. //
  7. // Copyright (c) 1992-2001, Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9.  
  10.  
  11. #ifndef _INC_COMLITE_
  12. #define _INC_COMLITE_
  13.  
  14. #define QzInitialize            CoInitialize
  15. #define QzUninitialize          CoUninitialize
  16. #define QzFreeUnusedLibraries   CoFreeUnusedLibraries
  17.  
  18. #define QzGetMalloc             CoGetMalloc
  19. #define QzTaskMemAlloc          CoTaskMemAlloc
  20. #define QzTaskMemRealloc        CoTaskMemRealloc
  21. #define QzTaskMemFree           CoTaskMemFree
  22. #define QzCreateFilterObject    CoCreateInstance
  23. #define QzCLSIDFromString       CLSIDFromString
  24. #define QzStringFromGUID2       StringFromGUID2
  25.  
  26. #endif  // _INC_COMLITE_
  27.